加载或者安装R包 stringr,stringr时报错如下 libicui18n.so.64 找不到 加载: library(stringi)Error: package or namespace load failed for ‘stringi’ in dyn.load(file, DLLpath ...
分类:
其他好文 时间:
2020-07-27 09:39:17
阅读次数:
150
出现这个问题是软件源和系统版本不一致导致的,更换软件源就可以了,可以参考阿里云软件源: https://developer.aliyun.com/mirror/ 可以看到不同的版本的ubuntu对应不同的软件源 然后修改了软件源之后在执行对应的操作就可以了,是不是很神奇呢! ...
分类:
系统相关 时间:
2020-07-27 09:39:00
阅读次数:
244
celery的使用 # 1 异步任务框架,执行异步任务,执行延迟任务,执行定时任务 # 2 Celery is a project with minimal funding, so we don’t support Microsoft Windows. Please don’t open any i ...
分类:
其他好文 时间:
2020-07-26 23:15:34
阅读次数:
64
其实join函数就是字符串的函数,参数和插入的都要是字符串 所以:将s = '_'.join(args)变成s = '_'.join(str(args).strip()) ...
分类:
编程语言 时间:
2020-07-26 22:53:44
阅读次数:
72
一:下载(借鉴:https://wenda.so.com/q/1470863138729940) 1.网址:https://dev.mysql.com/downloads/mysql/5.6.html#downloads 2.这里还可以选择版本,由于这里写的是5.6的安装,所以我没有更换,仍选择5. ...
分类:
数据库 时间:
2020-07-26 19:45:11
阅读次数:
96
适配器模式 概述 使用适配器类让一个对象获得或拥有另一个对象的行为,单向兼容或者双向兼容(相互兼容)。 适配器模式很好理解,就是让本不兼容的对象,用适配器让他们相互兼容。 话不多说,看代码 我举一个数据线接口的例子: Type-C孔 public class TypeC_Hole { private ...
分类:
其他好文 时间:
2020-07-26 15:47:04
阅读次数:
81
Courtesy Notice: Pipenv found itself running within a virtual environment, so it will automatically use that environment, instead of creating its own ...
分类:
编程语言 时间:
2020-07-26 02:03:02
阅读次数:
95
1.今日学习内容: servlet 的体系结构 http的请求消息数据格式 request对象和原理 request的功能 用JDBCtemplate,druid,mysql,html等技术练习登录案例 2.遇到的困难: 登录案例 404 not found 弄了几个小时,还未解决 3.明日学习内容 ...
分类:
其他好文 时间:
2020-07-26 01:33:30
阅读次数:
78
公司项目依赖了sonar检查,默认使用的是sonar-maven-plugin:3.7.0.1746版本。在执行sonar扫描时提示: SCM provider was set to "git" but no SCM provider found for this key. 这个原因在于sonar的 ...
分类:
其他好文 时间:
2020-07-25 23:41:22
阅读次数:
125
问题背景: 使用spark datasource v2 接口,外接存储源时,发现更改项目版本后,spark-shell报错 搜索该错误无果,网上报什么window util错,并不是我遇到的问题. error: not found: value spark Exception in thread " ...
分类:
编程语言 时间:
2020-07-24 15:52:06
阅读次数:
115